home *** CD-ROM | disk | FTP | other *** search
/ ftp.cs.arizona.edu / ftp.cs.arizona.edu.tar / ftp.cs.arizona.edu / icon / newsgrp / group99a.txt / 000009_icon-group-sender _Tue Jan 26 13:09:42 1999.msg < prev    next >
Internet Message Format  |  2000-09-20  |  2KB

  1. Return-Path: <icon-group-sender>
  2. Received: (from root@localhost)
  3.     by baskerville.CS.Arizona.EDU (8.9.1a/8.9.1) id NAA10508
  4.     for icon-group-addresses; Tue, 26 Jan 1999 13:09:02 -0700 (MST)
  5. Message-Id: <199901262009.NAA10508@baskerville.CS.Arizona.EDU>
  6. Date: Tue, 26 Jan 1999 09:23:55 -0600
  7. From: MJE <evans@gte.net>
  8. To: icon-group@optima.CS.Arizona.EDU
  9. Subject: Re: qei questions
  10. Errors-To: icon-group-errors@optima.CS.Arizona.EDU
  11. Status: RO
  12.  
  13. What the program needs is conditional compilation around the name of the
  14. Icon compiler...such is typical of cross-platform code...don't know
  15. whether Icon supports it.
  16.  
  17. Mark
  18.  
  19.  
  20. Jim Mehl wrote:
  21. >   It sounds like Dianna is having the same problem I was having a
  22. > couple of weeks ago. Thanks to help from Steve Wampler, I was able
  23. > to sort it out.
  24. >   Dianna didn't say, but I assume she is using the Windows version
  25. > of Icon.
  26. >   The problem is that qei (like a lot of other programs in the Icon
  27. > library) makes a call to system("icont ...) to invoke the Icon
  28. > compiler to evaluate expressions. Unfortunately with the Windows
  29. > version, the Icon compiler is named wicont (for the windowing
  30. > version) or nticont (for the command line version).
  31. >   The way I solved this was to make a copy of the nticont.exe
  32. > compiler named icont.exe. From a Windows DOS command line issue
  33. >      copy nticont.exe icont.exe
  34. >      patchstr icont.exe icont.exe
  35. > Patchstr comes with Windows Icon and is described under
  36. > Windows Icon Help -> Known Bugs and Limitations.
  37. > It is also necessary to compile qei.icn with either nticont or the
  38. > icont you just created. What you get is a command line only version
  39. > of qei, but it's better than nothing.
  40. >   It might be helpful if the documentation for Windows Icon mentioned
  41. > the fact that the library includes all sorts of calls to icont, but
  42. > that no icont.exe is included.
  43. > Jim Mehl
  44. > Los Gatos, CA
  45. > mehl@ihot.com
  46.  
  47.  
  48.